home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :ReadYes
- type readme.txt | more
-
- choice Would you like to view the ReadMe.Txt again
- if errorlevel 2 goto ReadNo
- if errorlevel 1 goto ReadYes
- :ReadNo
-
- choice Would you like to run the Crusader: No Regret Demo
- if errorlevel 2 goto PlayNo
- if errorlevel 1 goto PlayYes
-
- :PlayYes
- regret
- goto end
-
- :PlayNo
- echo Maybe next time...
- goto end
-
- :end
-